home *** CD-ROM | disk | FTP | other *** search
- ;
- ; QPV/386 video driver
- ; for Compaq QVision/AVGA chips
- ;
-
- .286
- Code Segment Para 'Code'
- Assume cs:Code
- Org 100h
-
- Procs dw Bank,Init,Exit,0
-
- Bank: shl al,4
- push ax
- mov dx,03ceh
- mov al,45h
- out dx,al
- inc dx
- pop ax
- push ax
- out dx,al ; page 0
- dec dx
- mov al,46h
- out dx,al
- inc dx
- pop ax
- out dx,al ; page 1
- retf
-
- Init: mov dx,03ceh
- mov al,0fh
- out dx,al
- inc dx
- mov al,05h
- out dx,al ; unlock extended registers
-
- dec dx
- mov al,40h
- out dx,al
- inc dx
- in al,dx
- push ax
- dec dx
- mov al,40h
- out dx,al
- inc dx
- pop ax
- and al,0feh
- out dx,al ; page 1 relative to a000:0
- retf
-
- Exit: retf
-
- Code Ends
- End Procs
-
- ; End of source.
-